home *** CD-ROM | disk | FTP | other *** search
-
- #ifndef __EWL_PROGRESSBAR_H__
- #define __EWL_PROGRESSBAR_H__
-
- /**
- * @file ewl_progressbar.h
- * @defgroup Ewl_Progressbar Progressbar: A progressbar from a value
- * @{
- */
-
- /**
- * @themekey /progressbar/file
- * @themekey /progressbar/group
- * @themekey /bar/file
- * @themekey /bar/group
- */
-
- /**
- * The Ewl_Progressbar provides a statusbar from a given value
- */
- typedef struct Ewl_Progressbar Ewl_Progressbar;
-
- /**
- * @def EWL_PROGRESSBAR(seeker)
- * Typecasts a pointer to an Ewl_Progressbar pointer.
- */
- #define EWL_PROGRESSBAR(progressbar) ((Ewl_Progressbar *) progressbar)
-
- /**
- * @struct Ewl_Progressbar
- * Inherits from Ewl_Container and creates an internal Ewl_Widget, the
- * statusbar itself.
- *
- */
- struct Ewl_Progressbar
- {
- Ewl_Container container; /**< Inherit from Ewl_Container */
- Ewl_Widget *bar; /**< The moving bar on top */
- Ewl_Widget *label; /**< text label on the bar */
- double value; /**< current value of the progressbar */
- double range; /**< the maximum range of the progressbar */
- int auto_label; /**< flag if user is setting label or not */
- };
-
-
- Ewl_Widget *ewl_progressbar_new(void);
- int ewl_progressbar_init(Ewl_Progressbar *p);
-
- void ewl_progressbar_value_set(Ewl_Progressbar *p, double v);
- double ewl_progressbar_value_get(Ewl_Progressbar *p);
-
- void ewl_progressbar_range_set(Ewl_Progressbar *p, double r);
- double ewl_progressbar_range_get(Ewl_Progressbar *p);
-
- void ewl_progressbar_label_set(Ewl_Progressbar *p, char *label);
- void ewl_progressbar_custom_label_set(Ewl_Progressbar *p,
- char *format_string);
-
- void ewl_progressbar_label_show(Ewl_Progressbar *p);
- void ewl_progressbar_label_hide(Ewl_Progressbar *p);
-
- /*
- * Internally used callbacks, override at your own risk.
- */
- void ewl_progressbar_configure_cb(Ewl_Widget *w, void *ev_data,
- void *user_data);
- void ewl_progressbar_child_show_cb(Ewl_Container *c, Ewl_Widget *w);
- void ewl_progressbar_child_resize_cb(Ewl_Container *c, Ewl_Widget *w, int size,
- Ewl_Orientation o);
-
- /**
- * @}
- */
-
- #endif /* __EWL_PROGRESSBAR_H__ */
-